POV-Ray : Newsgroups : povray.general : Subtle change in agate btw. 3.5->3.6? : Re: Subtle change in agate btw. 3.5->3.6? Server Time
3 Aug 2024 06:18:03 EDT (-0400)
  Re: Subtle change in agate btw. 3.5->3.6?  
From: Christoph Hormann
Date: 24 Jun 2004 10:30:02
Message: <cbeoar$5qj$1@chho.imagico.de>
Thorsten Froehlich wrote:
> 
>>I checked and there is a difference in parstxtr.cpp,
> 
> 
> What difference?
> 

Leaking the first parts of the 3.6 source into public... ;-)

3.6-release/source/parstxtr.cpp, line 140:


	Image->iwidth  = Image->width;
	Image->iheight = Image->height;
	Image->Colour_Map_Size = 0;
	Image->Colour_Map = NULL;

3.5-release/source/parstxtr.cpp, line 135:

	Image->iwidth  = Image->width;
	Image->iheight = Image->height;
	Image->width--;
	Image->height--;
	Image->Colour_Map_Size = 0;
	Image->Colour_Map = NULL;


Christoph

-- 
POV-Ray tutorials, include files, Sim-POV,
HCR-Edit and more: http://www.tu-bs.de/~y0013390/
Last updated 01 May. 2004 _____./\/^>_*_<^\/\.______


Post a reply to this message

Copyright 2003-2023 Persistence of Vision Raytracer Pty. Ltd.